added Feb 2001 SDK
[windows-sources.git] / shared source / sscli20 / jscript / engine / jsprototypeobject.cs
blob097d97925f1ae2b28ea100259e42edd884fb12a7
1 // ==++==
2 //
3 //
4 // Copyright (c) 2006 Microsoft Corporation. All rights reserved.
5 //
6 // The use and distribution terms for this software are contained in the file
7 // named license.txt, which can be found in the root of this distribution.
8 // By using this software in any fashion, you are agreeing to be bound by the
9 // terms of this license.
10 //
11 // You must not remove this notice, or any other, from this software.
12 //
13 //
14 // ==--==
16 namespace Microsoft.JScript {
17 using System;
19 public class JSPrototypeObject : JSObject {
20 public Object constructor;
22 internal JSPrototypeObject(ScriptObject parent, ScriptFunction constructor)
23 : base(parent, typeof(JSPrototypeObject)) {
24 this.constructor = constructor;
25 this.noExpando = false;